【CSS】border-left-style - 境界線(左)のスタイル

【CSS】border-left-style - 境界線(左)のスタイル

CSSのborder-left-styleプロパティについて解説します。

検証環境

border-left-style

border-left-styleは“境界線(左)のスタイル”のプロパティです。

基本構文

border-left-style: 値;

代表的な値は次の通りです。

意味
none 様式なし
hidden 非表示。
dotted 点線
dashed 破線
solid 直線
double 二重線
groove 凹線
ridge 凸線
inset 埋め込み線
outset 出っ張り線

サンプル

solid

<style>
p {
    ___ih_hl_start
    border-left-style: solid;
    ___ih_hl_end
}
</style>
 
<p>CSS : Cascading Style Sheets</p>

dashed

<style>
p {
    ___ih_hl_start
    border-left-style: dashed;
    ___ih_hl_end
}
</style>
 
<p>CSS : Cascading Style Sheets</p>

double

<style>
p {
    ___ih_hl_start
    border-left-style: double;
    ___ih_hl_end
}
</style>
 
<p>CSS : Cascading Style Sheets</p>